.description {
  padding: 75px;
  background-color: white;
  margin-bottom: 0;
}

.description h1 {
  color: #641734;
  font-size: 1.4rem;
  font-family: "Platypi", "Arial";
  text-align: center;
}

.description p {
  color: #000000;
  font-size: 1rem;
  font-family: "Jost", "Arial";
  max-width: 600px;
  margin: 0 auto;
}

.additional-content {
  margin-top: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 50px;
  background-color: #000000;
  flex-wrap: wrap;
}

.image-button {
  background-color: rgb(255, 255, 255);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  width: calc(25% - 10px);
  border-radius: 15px;
  margin-left: 20px;
}

.image-button img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.button-content {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0);
}

.button-header {
  font-family: 'Platypi', 'Arial';
  font-size: 20px;
  color: #641734;
  margin-bottom: 50px;
}

.number-header {
  font-family: 'Jost', 'Arial';
  font-size: 45px;
  color: #000000;
}

.button-description {
  font-family: 'Jost', 'Arial';
  font-size: 18px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Jost', 'Arial';
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background-color: #641734;
  border-radius: 5px;
}

.image-button:hover {
  transform: scale(1.025);
}

.additional-content2 {
  padding: 0px;
  text-align: center;
  line-height: 1.4;
}

.additional-content2 h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-family: 'Jost', 'Arial';
}

.additional-content2 p {
  margin: 30px 60px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Jost', 'Arial';
  text-align: center;
  font-weight: bold;
}

.text-overlay {
  position: absolute;
  left: 0;
  width: 25%;
  padding: 20px;
  margin-left: 50px;
  box-sizing: border-box;
  color: #ffffff;
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
  line-height: 20px;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.text-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 1;
}

.text-overlay h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 0.5;
  color: #212121;
}

.text-overlay p {
  font-size: 1rem;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}

.banner-text {
  margin: 100px 0 0 0;
  width: 500px;
  animation: fadeInAnimation 2s ease-in forwards;
  position: absolute;
  left: 0;
  text-align: left;
  line-height: 50px;
  font-family: 'Rock Salt', 'Arial';
  margin-left: 90px;
}

.banner-text h1 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 2.9rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}


.form-section {
  padding: 100px;
  border-radius: 10px;
  width: 70%;
  margin: auto;
}

.form-section h1 {
  font-family: 'Platypi', 'Arial';
  font-size: 1.6rem;
  color: #641734;
  margin-bottom: 20px;
  text-align: center;
}

.form-section h2 {
  font-family: 'Jost', 'Arial';
  font-size: 1rem;
  color: black;
  margin-bottom: 20px;
  text-align: center;
}

.form-section label {
  font-family: 'Jost', 'Arial';
  font-size: 1rem;
  color: #212121;
  margin-bottom: 5px;
  display: block;
}

.form-section input[type="sender"],
.form-section input[type="email"],
.form-section input[type="radio"],
.form-section input[type="checkbox"],
.form-section textarea,
.form-section select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Jost', 'Arial';
  font-size: 1rem;
}

.form-section input[type="radio"],
.form-section input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.form-section textarea {
  resize: vertical;
}

.form-section input[type="submit"],
.form-section input[type="reset"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #641734;
  color: white;
  font-family: 'Jost', 'Arial';
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.form-section input[type="submit"]:hover,
.form-section input[type="reset"]:hover {
  background-color: #841e44;
}

@media (max-width: 1000px) {
  .banner-text {
    width: 90%;
    /* Adjust banner width for mobile */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);
    /* Offset it by half its width to truly center */
    text-align: center;
    /* Center the text */
    margin-left: 0;
    /* Reset margin-left for mobile */
  }

  .description {
    padding: 50px 20px;
    /* Reduce padding on mobile */
  }

  .form-section {
    padding: 50px;
    /* Adjust padding for form section */
    width: 70%;
    /* Make the form section responsive */
  }

  .additional-content {
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    /* Center items */
    padding: 0;
    /* Remove padding to avoid extra white space */
    margin: 0;
    /* Remove margin to avoid extra white space */
  }

  .image-button {
    width: 100%;
    /* Make buttons stack on smaller screens */
    margin: 10px 0;
    /* Add margin for spacing */
  }

  body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
  }
}